home *** CD-ROM | disk | FTP | other *** search
/ Champak 145 / (Vol 145) Dec 21 2011.iso / Games / hearts.swf / scripts / DefineSprite_455 / frame_24 / DoAction.as
Encoding:
Text File  |  2011-12-21  |  346 b   |  26 lines

  1. if(this.txt == 3)
  2. {
  3.    this.txt = 2;
  4. }
  5. else if(this.txt == 2)
  6. {
  7.    this.txt = 1;
  8. }
  9. else if(this.txt == 1)
  10. {
  11.    this.txt = "GO!";
  12. }
  13. else if(this.txt == "GO!")
  14. {
  15.    this.txt = "done";
  16. }
  17. if(this.txt == "done")
  18. {
  19.    this._parent._parent.gamePlay = true;
  20.    this.gotoAndStop("blank");
  21. }
  22. else
  23. {
  24.    this.gotoAndPlay("count");
  25. }
  26.